Mathematical expressions

您所在的位置:网站首页 pages ipad数学公式编辑器 Mathematical expressions

Mathematical expressions

2024-06-04 17:35| 来源: 网络整理| 查看: 265

Contents 1 Introduction 2 Mathematical modes 2.1 Inline math mode 2.2 Display math mode 3 Another example 4 Reference guide 5 Further reading Introduction

LaTeX's features for typesetting mathematics make it a compelling choice for writing technical documents. This article shows the most basic commands needed to get started with writing maths using LaTeX.

Writing basic equations in LaTeX is straightforward, for example:

\documentclass{article} \begin{document} The well known Pythagorean theorem \(x^2 + y^2 = z^2\) was proved to be invalid for other exponents. Meaning the next equation has no integer solutions: \[ x^n + y^n = z^n \] \end{document}

 Open this example in Overleaf

Example of math equation

As you see, the way the equations are displayed depends on the delimiter, in this case \[...\] and \(...\).

Mathematical modes

LaTeX allows two writing modes for mathematical expressions: the inline math mode and display math mode:

inline math mode is used to write formulas that are part of a paragraph display math mode is used to write expressions that are not part of a paragraph, and are therefore put on separate lines Inline math mode

You can use any of these "delimiters" to typeset your math in inline mode:

\(...\) $...$ \begin{math}...\end{math}

They all work and the choice is a matter of taste, so let's see some examples.

\documentclass{article} \begin{document} \noindent Standard \LaTeX{} practice is to write inline math by enclosing it between \verb|\(...\)|: \begin{quote} In physics, the mass-energy equivalence is stated by the equation \(E=mc^2\), discovered in 1905 by Albert Einstein. \end{quote} \noindent Instead if writing (enclosing) inline math between \verb|\(...\)| you can use \texttt{\$...\$} to achieve the same result: \begin{quote} In physics, the mass-energy equivalence is stated by the equation $E=mc^2$, discovered in 1905 by Albert Einstein. \end{quote} \noindent Or, you can use \verb|\begin{math}...\end{math}|: \begin{quote} In physics, the mass-energy equivalence is stated by the equation \begin{math}E=mc^2\end{math}, discovered in 1905 by Albert Einstein. \end{quote} \end{document}

 Open this example in Overleaf

Example of equation inline

Display math mode

Use one of these constructions to typeset maths in display mode:

\[...\] \begin{displaymath}...\end{displaymath} \begin{equation}...\end{equation}

Display math mode has two versions which produce numbered or unnumbered equations. Let's look at a basic example:

\documentclass{article} \begin{document} The mass-energy equivalence is described by the famous equation \[E=mc^2\] discovered in 1905 by Albert Einstein. In natural units ($c$ = 1), the formula expresses the identity \begin{equation} E=m \end{equation} \end{document}

 Open this example in Overleaf

Displayex.png

Another example

The following example uses the equation* environment which is provided by the amsmath package—see the amsmath article for more information.

\documentclass{article} \usepackage{amsmath} % for the equation* environment \begin{document} This is a simple math expression \(\sqrt{x^2+1}\) inside text. And this is also the same: \begin{math} \sqrt{x^2+1} \end{math} but by using another command. This is a simple math expression without numbering \[\sqrt{x^2+1}\] separated from text. This is also the same: \begin{displaymath} \sqrt{x^2+1} \end{displaymath} \ldots and this: \begin{equation*} \sqrt{x^2+1} \end{equation*} \end{document}

 Open this example in Overleaf

Amsexample.png

Reference guide

Below is a table with some common maths symbols. For a more complete list see the List of Greek letters and math symbols:

description code examples Greek letters \alpha \beta \gamma \rho \sigma \delta \epsilon $$ \alpha \ \beta \ \gamma \ \rho \ \sigma \ \delta \ \epsilon $$ Binary operators \times \otimes \oplus \cup \cap × {\displaystyle \times } ⊗ {\displaystyle \otimes } ⊕ {\displaystyle \oplus } ∪ {\displaystyle \cup } ∩ {\displaystyle \cap } Relation operators < > \subset \supset \subseteq \supseteq ⊂   ⊃   ⊆   ⊇ {\displaystyle \subset \ \supset \ \subseteq \ \supseteq } Others \int \oint \sum \prod ∫   ∮   ∑   ∏ {\displaystyle \int \ \oint \ \sum \ \prod }

Different classes of mathematical symbols are characterized by different formatting (for example, variables are italicized, but operators are not) and different spacing.

Further reading

The mathematics mode in LaTeX is very flexible and powerful, there is much more that can be done with it:

Subscripts and superscripts Brackets and Parentheses Fractions and Binomials Aligning Equations Operators Spacing in math mode Integrals, sums and limits Display style in math mode List of Greek letters and math symbols Mathematical fonts


【本文地址】


今日新闻


推荐新闻


CopyRight 2018-2019 办公设备维修网 版权所有 豫ICP备15022753号-3